--Service request control
--The Exporter received a  request for a service and has to has to handle it. 
--Exporter received a  request for a service
--The Exporter received a  request for a service and has to has to handle it 
(obj : object;  -- importer 
 type : integer) -- type of importer (0..failure, 1..setup, 2..processing)
is
do
	if obj=object then
		if typ=0 then
			-- add your code here
		end;	
		if typ=1 then
			-- add your code here
		end;	
		if typ=2 then
			-- add your code here
		end;
	else
		-- add your code here
	end;
end;
/*object:Enter the name of the station which imports the service here.
*/